home *** CD-ROM | disk | FTP | other *** search
/ Amiga News 96 / Amiga News 96.iso / amig_ad_os / avm / avminstall / rexx / openmailbox.avm < prev    next >
Text File  |  1977-12-31  |  308b  |  12 lines

  1. /* */
  2. parse upper arg mailbox special .
  3.  
  4. if mailbox = 'OUTGOING' then
  5.   address command 'run >nil: <nil: avm:scheduler' mailbox
  6. else if mailbox = 'OUTGOINGARCHIVE' then
  7.   address command 'run >nil: <nil: avm:scheduler' mailbox '-noschedule'
  8. else
  9.   address command 'run >nil: <nil: avm:logview' mailbox
  10.  
  11. exit
  12.